home *** CD-ROM | disk | FTP | other *** search
/ Workbench Add-On / Workbench Add-On - Volume 1.iso / Text / Edit / XDme / Docs / HINTS < prev    next >
Text File  |  1992-11-11  |  1KB  |  38 lines

  1.  
  2. In this file I'll put some hints&tips together. You can send me such hints
  3. and I'll incorporate them !
  4.  
  5. 1. The Paging after the StyleGuide:
  6.  
  7. Well we all have seen much crap from CBM yet and the StypeGuide won't be
  8. the last thing :-( Anyway most things in the StyleGuide are ok and
  9. reasonable BUT:
  10.  
  11.     If you don't like how the SG wants an editor to do PAGING, try the
  12. following:
  13.  
  14.     map s-left    c-left
  15.     map s-right last
  16.     map s-up    `screentop pageup'
  17.     map s-down    `screenbottom pagedown'
  18.  
  19. "Sorry for the inconvenience" :-)
  20.  
  21. 2. Dirk told me a little trick for GLOBAL search. You may have noticed that
  22. XDME is not yet able to search through ALL open windows. He did the following:
  23.  
  24.     map A-s `escimm (set searchfor \`) findstr \$searchfor next'
  25.     map A-r `escimm (set searchfor \`) findstr \$searchfor escimm (set repwith \`) repstr \$repwith nextr'
  26.  
  27. Now you can iconify the window and type "search #?.c $searchfor" in the shell.
  28.  
  29. I'm working on a global search right now :-)
  30.  
  31. 3. The following routine walks through all windows:
  32.  
  33.     select save
  34.     select first
  35.     while selnext ``I was here :-)''
  36.     select load
  37.  
  38.